home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / misc_pto / basic-c / test3.bas < prev    next >
Encoding:
BASIC Source File  |  1988-12-21  |  249 b   |  9 lines

  1. print "This program computes the volume of a cube."
  2. input "Enter length of first side ", l
  3. input "Enter length of second side ", w
  4. input "Enter length of third side ", d
  5. t = l * w * d
  6. print "Volume is ",t
  7. input "press RETURN to EXIT", y
  8. end
  9.